html {
    font-size: 50px;
}

@media (min-width: 750px) {
    html {
        font-size: 55px;
    }
}

@media (min-width: 960px) {
    html {
        font-size: 85px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 100px;
    }
}

body {
    font-size: 16px;
}

.box {
    width: 11.86rem;
}

.wrap {
    width: 100%;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.containerCenter {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/*nav*/
.navPosition {
    position: fixed;
    top: 0;
}

.nav-box-fixed{
    height:70px;
}
.navBox {
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    height: 70px;
    line-height: 70px;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    background-color: rgba(255, 255, 255, .9);
    transition:all 0.3s linear;
    z-index: 10;
}
.fn-nav-shadow{
    box-shadow:0 0 8px 2px rgba(60, 60, 60, .2);
}

.nav {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
    margin: 0 auto;
}

    .nav .nav_logo {
        /*margin-right: 0.1rem;*/
        width: 150px;
    }

        .nav .nav_logo a {
            height: 70px;
            line-height: 70px;
            display: flex;
            display: -moz-flex;
            display: -ms-flex;
            display: -webkit-flex;
            justify-content: flex-start;
            align-items: center;
        }

            .nav .nav_logo a img {
                width: 100%;
            }

.nav_dec {
    width: 65%;
}

    .nav_dec > ul {
        display: flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -webkit-flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        /*height: 0.8rem;*/
    }

        .nav_dec > ul > li {
            position: relative;
            /*margin-right: 0.1rem;*/
            height: 70px;
            /*line-height: 0.8rem;*/
        }


            .nav_dec > ul > li a {
                font-size: 16px;
                color: rgba(51, 51, 51, 1);
                line-height: 36px;
                /*font-weight: 400;*/
            }

/*.navPosition .nav_dec .active a:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0.1rem;*/
/*    left: 50%;*/
/*    margin-left: -0.3rem;*/
/*    transition: all 0.3s ease-out;*/
/*    width: 0.6rem;*/
/*    height: 2px;*/
/*    background: rgba(255, 255, 255, 1);*/
/*}*/

.navNoPosition .nav_dec .active a:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -30px;
    transition: all 0.3s ease-out;
    width: 60px;
    height: 2px;
    background: rgba(31, 78, 161, 1);
}

.prd_service {
    position: relative;
    z-index: 10;
    /*width: 1.2rem;*/
    text-align: center;
}

.hoverBg {
    position: absolute;
    height: 70px;
    width: 200%;
    top: 0;
    left: 50%;
    margin-left: -100%;
}

.prd_service ul li a {
    /*font-size: 0.14rem;*/
}

.prd_service ul li:hover {
    background: #366BDD;
    color: #FFF;
    /*padding: 0 0.2rem;*/
}

    .prd_service ul li:hover a {
        color: #FFF;
    }


.nav_dec .productSecond {
    position: absolute;
    width: 200%;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    left: 50%;
    margin-left: -100%;
    display: none;
}

    .nav_dec .productSecond li {
        width: 100%;
        z-index: 10;
        /*font-weight: 400;*/
        line-height: 36px;
    }

        .nav_dec .productSecond li a {
            font-size: 14px;
            color: rgba(51, 51, 51, 1);
            padding: 0 20px;
            display: block;
        }

.second {
    background: url("../img/common/down.png") no-repeat center center;
    width: 11px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.05rem;
}

.navNoPosition .second {
    background: url("../img/common/down_black.png") no-repeat center;
}

/*.prd_service>.productSecond:before {*/
/*    position: absolute;*/
/*    top: -0.1rem;*/
/*    left: 50%;*/
/*    margin-left: -0.1rem;*/
/*    width: 0;*/
/*    height: 0;*/
/*    content: "";*/
/*    border-width: 0 0.1rem 0.1rem;*/
/*    border-style: solid;*/
/*    border-color: transparent transparent rgba(255, 255, 255, 0.8);*/
/*}*/
.san {
    position: absolute;
    height: 10px;
    width: 200%;
    left: 50%;
    margin-left: -100%;
    display: none;
}

    .san span {
        position: absolute;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        content: "";
        border-width: 0 10px 10px;
        border-style: solid;
        border-color: transparent transparent rgba(255, 255, 255, 0.8);
    }

.nav_dec .prd_service:hover .second {
    background: url('../img/common/up_black.png') no-repeat center;
}

.nav_dec .prd_service:hover .productSecond {
    display: block;
}

.nav_dec .prd_service:hover .san {
    display: block;
}

/*mobile_nav*/
.mobile_nav_box .nav_logo img {
    height: 0.4rem;
}

.mobile_nav_box {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

    .mobile_nav_box .nav_logo {
        margin-left: 0.2rem;
    }

    .mobile_nav_box .nav_ulIcon {
        background: url(../img/common/top_menu.png) no-repeat center center;
        width: 0.7rem;
        height: 0.7rem;
        margin-right: 0.2rem;
        background-size: 70% 70%;
    }

    .mobile_nav_box .nav_ul {
        position: absolute;
        /*display: none;*/
        width: 120px;
        top: 0.7rem;
        background: rgba(1, 48, 108, .7);
        padding: 10px 0;
        right: 0;
        z-index: 999;
    }

        .mobile_nav_box .nav_ul li {
            /*padding: 10px;*/
            text-align: center;
            color: #fff;
            line-height: 34px;
            font-size: 0.2rem;
        }

            .mobile_nav_box .nav_ul li:hover {
            }

            .mobile_nav_box .nav_ul li a {
                color: #fff;
                display: block;
            }

    .mobile_nav_box .mobile_nav {
        position: relative;
        display: flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -webkit-flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 0.7rem;
        background: rgba(0, 0, 0, .5);
        z-index: 10;
    }

.show {
    display: block;
}

.hide {
    display: none;
}


.mobile_nav_box .productSecond {
    position: relative;
}

    .mobile_nav_box .productSecond .second_ul {
        position: absolute;
        padding: 10px 0;
        right: 120px;
        z-index: 999;
        background: rgba(1, 48, 108, .7);
        width: 150px;
        margin-top: -24px;
        border-right: 1px solid #000;
        box-sizing: border-box;
    }


/*footer*/
.footer {
    width: 100%;
    height: 4rem;
    background: rgba(58, 68, 80, 1);
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phoneLeft {
    width: 0.6rem;
    background: url('../img/common/kefu.png') no-repeat top center;
    background-size: 70%;
}

.footerContent {
    height: 4rem;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
}

    .footerContent .footerTop {
        /*height: 2.13rem;*/
        display: flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -webkit-flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 0.5rem;
    }

.footItem {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: row;
}

    .footItem .footItemType {
        margin-right: 0.18rem;
        font-size: 0.14rem;
        /*font-weight: bold;*/
        color: rgba(255, 255, 255, 1);
        line-height: 0.24rem;
    }

.phoneType {
    font-size: 0.16rem;
    /*font-weight: bold;*/
    color: rgba(204, 204, 204, 1);
    line-height: 0.24rem;
}

.phoneTypeItem {
    font-size: 0.2rem;
    /*font-weight: bold;*/
    color: rgba(255, 255, 255, 1);
    line-height: 0.45rem;
}

.footItemTypeItem a {
    color: rgba(204, 204, 204, 1);
}

.footItem .footItemTypeItem {
    font-size: 0.12rem;
    /*font-weight: 400;*/
    color: rgba(204, 204, 204, 1);
    line-height: 0.24rem;
}

.weChat_img {
    width: 1.18rem;
    height: 1.18rem;
    margin-left: 0.18rem;
}

.weChat_text {
    font-size: 0.12rem;
    /*font-weight: 400;*/
    color: rgba(204, 204, 204, 1);
    line-height: 0.24rem;
    text-align: center;
    margin-left: 0.18rem;
}

.friends {
    font-size: 0.14rem;
    color: #CCCCCC;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 0.3rem;
    margin-top: 0.2rem;
}

.friendsTitle {
    margin-left: 0.6rem;
    font-size: 0.12rem;
}

.friendsItem {
    width: 85%;
}

    .friendsItem a span {
        display: inline-block;
        color: #ccc;
        font-size: 0.12rem;
    }

    .friendsItem a {
        display: inline-block;
        margin-left: 10px;
    }

.footerLine {
    width: 100%;
    height: 0.02rem;
    background: rgba(102, 102, 102, 1);
}


.footerContent .footerBottom {
    height: 0.86rem;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: row;
}

.footerBottom .logo {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0.3rem;
}

    .footerBottom .logo img {
        width: 30%;
    }

.address {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 0.12rem;
    /*font-weight: 400;*/
    color: rgba(204, 204, 204, 1);
    line-height: 0.24rem;
    /*width: 100%;*/
}


/*index common*/
.typeHeader {
    padding-top: 0.6rem;
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.3rem;
    width: 100%;
}

    .typeHeader .typeUnderline {
        height: 1px;
        background: rgba(237, 237, 237, 1);
        width: 100%;
    }

    .typeHeader .typeTitle {
        font-size: 0.3rem;
    }

    .typeHeader .typeLine {
        width: 0.8rem;
        height: 0.03rem;
        background: rgba(170, 170, 170, 1);
        margin-top: 0.21rem;
    }

    .typeHeader .typeName {
        font-size: 0.14rem;
        color: rgba(153, 153, 153, 1);
        line-height: 0.24rem;
        /*font-weight: 400;*/
        margin-top: 0.1rem;
    }

.typeItemList {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -webkit-flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.more {
    width: 2rem;
    height: 0.5rem;
    border: 1px solid rgba(204, 204, 204, 1);
    font-size: 0.18rem;
    text-align: center;
    line-height: 0.5rem;
    /*margin-bottom: 0.6rem;*/
    margin: 0 auto 0.6rem auto;
}

    .more a {
        color: rgba(51, 51, 51, 1);
    }

    .more:hover {
        background: rgba(24, 67, 139, 1);
        color: rgba(255, 255, 255, 1);
    }

        .more:hover a {
            color: rgba(255, 255, 255, 1);
        }

@media screen and (max-width: 1000px) {
    .mobile_nav_box {
        display: flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -webkit-flex;
    }

    .navBox {
        display: none;
    }

    .box {
        width: 90%;
    }
}


@media screen and (max-width: 540px) {

    .containerCenter {
        width: 92%;
        margin: 0 auto;
    }

    .mobile_nav_box {
        display: flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -webkit-flex;
    }

    .friends {
        display: none;
    }

    .navBox {
        display: none;
    }


    .footer {
        height: 2rem;
    }

        .footer .footerTop {
            display: none;
        }

        .footer .footerLine {
            display: none;
        }

    .footerContent {
        justify-content: center;
    }

    .footer .footerContent .footerBottom {
        flex-direction: column;
        height: auto;
    }

    .footerContent .footerBottom .logo {
        margin-left: 0rem;
        justify-content: center;
    }

    .address {
        line-height: 0.32rem;
        padding: 0 0.1rem;
        width: auto;
    }

    .swiper-container {
        height: 3rem;
    }

    .box {
        width: 100%;
    }
}
